home *** CD-ROM | disk | FTP | other *** search
/ Secrets of Stargate / STARGATE.iso / mac / STARGATE (5MB Macintosh) / STARGATE (5MB Macintosh).DXR / 00029.ls < prev    next >
Encoding:
Text File  |  1994-10-19  |  653 b   |  25 lines

  1. on mouseUp
  2.   set theLine to the mouseLine
  3.   set sN to the clickOn
  4.   if the timer < 20 then
  5.     exit
  6.   end if
  7.   if line theLine of field the castNum of sprite sN = EMPTY then
  8.     exit
  9.   end if
  10.   spinCursor()
  11.   set the visible of sprite 33 to 0
  12.   set fN to the castNum of sprite sN
  13.   set tH to the textHeight of field fN
  14.   set vMod to (theLine - 1) * tH
  15.   set nV to integer(tH / 2) + the top of sprite sN + vMod - 1
  16.   set nH to the locH of sprite sN - 10
  17.   set the locV of sprite 33 to nV
  18.   set the locH of sprite 33 to nH
  19.   set the visible of sprite 33 to 1
  20.   updateStage()
  21.   wait(10)
  22.   set the visible of sprite 33 to 0
  23.   LinkStageFromLine(theLine)
  24. end
  25.